body{
    margin: 0px;
}

.center{
    text-align: center;
}

.main-content-box{
    padding:20px;
}

.xl-nav-bar {
    height: 60px; /* Locked height */
    width: 100%;  /* Fills the column */
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white; /* Optional: ensures no transparency issues */
    border-radius: 8px; /* Optional: matches your shadow */
}


.tab-content {
    display: none;
}

.tab-content:target {
    display: block;
}

 
#About {
    display: block;
}

.border-round {
    border-radius: 20px;
}

.whitebg {
    background-color: white;
}

.gif-background {
    /* Set to repeat both horizontally and vertically */
    background: url('/assets/boomerangbg.gif') repeat;
    
    /* 'auto' ensures the GIF stays at its original/true pixel size */
    background-size: auto;
    
    /* Standard full-screen container properties */
    min-height: 100vh;
    width: 100%;
    
    /* Optional: ensures the background stays put when scrolling */
    background-attachment: fixed;
}
.fill-rectangle {
    height: fit-content;
    margin:0;
    width: 100%;

}

p{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.contactlinks {
    background-color: black;
}

.box {
    padding: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.card {
    height: 250px;
    width: 150px;
    margin-top: 10px;
    border-radius: 20px;
    background-color: black;
    color: white;
}

.skill-card {
    height: 150px;
    width: 400px;
    margin-top: 10px;
    border-radius: 20px;
    background-color: black;
    color: white;
}

.child-card {
    height: 125px;
    width: 125;
    background-color: white;
    margin-top: 10px;
    border-radius: 20px;    
    
}



.child-to-exclude {
    align-self: flex-start; /* This child is now at the top */
  }